-- card: 39675 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part contents for background part 4 ----- text ----- Suppose a new instance variable is declared for the Person class: a character array of length 80 called 'name'. Remember that array names are considered in C to represent the address of the first element of the array. Therefore the following use of the standard string copy function may also cause program bombs: void Person::set(void) { strcpy(name,"Jack Knapp"); /* may cause bombs in TC */ } Instead, the programmer must assign each character one by one (or write a string-copy function which doesn't move memory): name[0] = 'J'; name[1] = 'a'; . . -- part contents for background part 7 ----- text ----- 125